From a953870b3ba6ebc3a3bd7a861c62051f04a73e94 Mon Sep 17 00:00:00 2001 From: Alexander Egorenkov Date: Sun, 4 Apr 2021 12:41:03 +0200 Subject: [PATCH] luci-app-transmission: fix ' ' exception in OpenWrt theme Convert ' ' to ' ' which is both syntactically correct (semicolon present) and XHTML compliant. Signed-off-by: Alexander Egorenkov (cherry picked from commit afd096edfcd5669510702b47c964ba75d698d5af) --- .../htdocs/luci-static/resources/view/transmission.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js b/applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js index f2c42ddba5..0ba84a9b52 100644 --- a/applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js +++ b/applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js @@ -35,7 +35,7 @@ return view.extend({ var button = ''; if (running && webinstalled) - button = ' ' + _('Open Web Interface') + ''; + button = ' ' + _('Open Web Interface') + ''; var m, s, o; -- 2.30.2